home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Data 2001 April / CD Rom Data Nisan 2001.iso / Internet / data1.cab / Documentation / Customizing_the_Development_Environment / VTML_Reference / vtmlref.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2000-11-30  |  2.9 KB  |  154 lines

  1. /* --------------------------------------- */
  2. /* Styles for VTML Reference documentation */
  3. /* 1999-11-07                              */
  4. /*                                         */
  5. /* StyleSheet created with TopStyle 1.5    */
  6. /* --------------------------------------- */
  7.  
  8. /* --------------------------------------- */
  9. /* All sizing is in a separate stylesheet  */
  10. /* that is imported. This means IE3 won't  */
  11. /* stumble over the em units and there     */
  12. /* won't be (as many) inheritance problems */
  13. /* with NS4 since neither IE3 nor NS4      */
  14. /* support @import: they will only see the */
  15. /* rest of this stylesheet.                */
  16. /* --------------------------------------- */
  17.  
  18. @import url(vtmlrefsizing.css);
  19.  
  20. /* --- BASICS --- */
  21.  
  22. BODY {
  23.     /* basic font size relative to user's font size but slightly smaller to allow for the small Help window in HomeSite and Studio */
  24.     background-color : #FFFFF0;
  25. }
  26.  
  27. BODY, P, A, TD, TH, UL, OL, LI, DL, DT, DD {
  28.     font-family : Verdana, Arial, Helvetica, sans-serif;
  29. }
  30.  
  31. /* --- HEADERS --- */
  32.  
  33. H1 {
  34.     color : #000000;
  35.     background-color : #FFFFF0;
  36.     font-weight : bold;
  37.     font-family : Verdana, Arial, Helvetica, sans-serif;
  38. }
  39.  
  40. H2 {
  41.     color : #000000;
  42.     background-color : #FFFFF0;
  43.     font-weight : bold;
  44.     font-family : Verdana, Arial, Helvetica, sans-serif;
  45. }
  46.  
  47. H3 {
  48.     color : #000000;
  49.     background-color : #FFFFF0;
  50.     font-weight : bold;
  51.     font-family : Verdana, Arial, Helvetica, sans-serif;
  52. }
  53.  
  54. H4 {
  55.     color : #000000;
  56.     background-color : #FFFFF0;
  57.     font-weight : bold;
  58.     font-family : Verdana, Arial, Helvetica, sans-serif;
  59. }
  60.  
  61. H5 {
  62.     color : #000000;
  63.     background-color : #FFFFF0;
  64.     font-family : Verdana, Arial, Helvetica, sans-serif;
  65. }
  66.  
  67. /* --- CODE AND EXAMPLES .--- */
  68.  
  69. CODE {
  70.     /* inherit background color */
  71.     color : #800000;
  72.     font-family : "Courier New", Courier, monospace;
  73. }
  74.  
  75. SAMP {
  76.     margin-top : 0;
  77.     margin-bottom : 0;
  78.     color : #006000;
  79.     background-color : #FFFFF0;
  80.     font-family : "Courier New", Courier, monospace;
  81. }
  82.  
  83. PRE {
  84.     color : #800000;
  85.     background-color : #FFFFF0;
  86.     font-family : "Courier New", Courier, monospace;
  87. }
  88.  
  89. DD PRE {
  90.     color : #800000;
  91.     background-color : #FFFFF0;
  92. }
  93.  
  94. OL PRE, UL PRE {
  95.     margin-bottom : 0;
  96.     color : #800000;
  97.     background-color : #FFFFF0;
  98. }
  99.  
  100. PRE.syntax {
  101.     margin-top : 0;
  102.     margin-bottom : 0;
  103.     color : #000000;
  104.     background-color : #FFFFF0;
  105.     font-weight : bold;
  106. }
  107.  
  108. /* --- TABLES --- */
  109.  
  110. TABLE {
  111.     background-color : #F3F3EF;
  112. }
  113.  
  114. TD.syntax {
  115.     color : #000000;
  116.     background-color : #CCCCCC;
  117.     font-weight : bold;
  118. }
  119.  
  120. TH {
  121.     color : #000000;
  122.     background-color : #CCCCCC;
  123. }
  124.  
  125. TH FONT {
  126.     color : #000000;
  127.     background-color : #CCCCCC;
  128. }
  129.  
  130. TD FONT {
  131.     color : #000000;
  132. }
  133.  
  134. /* --- LISTS --- */
  135.  
  136. OL UL LI, UL UL LI {
  137.     margin-left : 0;
  138.     list-style-type : square;
  139. }
  140.  
  141. OL UL LI, UL UL LI {
  142.     margin-left : 0;
  143. }
  144.  
  145. OL LI LI {
  146.     margin-left : 0;
  147. }
  148.  
  149. /* --- FOOTNOTE --- */
  150.  
  151. .footnote {
  152.     font-size : 0.8em;
  153. }
  154.